home *** CD-ROM | disk | FTP | other *** search
/ BMUG PD-ROM 1995 Fall / PD-ROM F95.toast / Utilities / System Utils / A-F System Utils / Commodore 64 0.4 ƒ / SOURCE / Stack.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-25  |  170 b   |  5 lines  |  [TEXT/ttxt]

  1. #define Push(z) RAM[sp+256]=z; sp--
  2. #define Pop() ((byte)RAM[++sp+256])
  3. #define PushWord(z) Push((z>>8)&255); Push(z&255)
  4. #define PopWord(z) z=Pop(); z +=(word)256*Pop()
  5.